Carbon


QDCommentProcPtr

Header: Quickdraw.h Carbon status: Supported

typedef void(* QDCommentProcPtr) (
    SInt16 kind, 
    SInt16 dataSize, 
    Handle dataHandle
);

You would declare your function like this if you were to name it MyQDCommentCallback:

void MyQDCommentCallback (
    SInt16 kind, 
    SInt16 dataSize, 
    Handle dataHandle
);

© 2000 Apple Computer, Inc. (Last Updated 6/30/2000)